home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / dosutils / extrac21.zip / EXTRACT.TXT < prev    next >
Text File  |  1996-09-27  |  8KB  |  243 lines

  1.  
  2.  
  3.  
  4.                         EXTRACT v2.10
  5.                 Copyright 1996, Gilles Vollant
  6.                      All Right Reserved.
  7.  
  8.  
  9.  
  10. EXTRACT is a copyright work that can be distributed as freeware.
  11. You may distribute EXTRACT provided you include EXTRACT.TXT and
  12. FILE_ID.DIZ unmodified, with the program. You may upload to BBSes,
  13. the Internet, and place it on CD-ROMs.
  14.  
  15. EXTRACT MAY NOW BE INCLUDED WITH A COMMERCIAL PRODUCT. If you put
  16. a disk image on commercial CDROM (like Microsoft Windows 3.1 DDK),
  17. you may include the Extract utility.
  18.  
  19. Extract is composed of two files, an executable and a text file.
  20. If you distribute Extract, you must distribute EXTRACT.EXE and
  21. EXTRACT.TXT together.
  22.  
  23.  
  24. THIS SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS-IS" WITHOUT WARRANTY 
  25. OF ANY KIND. THE AUTHOR DOES NOT WARRANTY OR GUARANTEE, OR MAKE 
  26. REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF USE, OF THIS 
  27. SOFTWARE. BY USING THIS SOFTWARE YOU AGREE TO ASSUME ALL 
  28. RESPONSIBILITY FOR IT'S USE AND RESULTS.
  29.  
  30.  
  31.          Extract is a Copyright work of Gilles Vollant.
  32.  
  33.  
  34.  
  35. BBS DESCRIPTION
  36. ~~~~~~~~~~~~~~~
  37. EXTRACT 2.10: Extract files from disk image using PKUNZIP UNARJ like
  38. syntax. Extract files from floppy image created by WinImage (same
  39. author), DCF, DF, Sabdu, and many other disk copy tools which create
  40. a disk image. Versions for DOS and for NT.  You can create image and
  41. inject a file onto it. NOW FREEWARE!
  42.  
  43.  
  44.  
  45. EXTRACTING A FILE FROM A DISK IMAGE
  46. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  47. Extract is a command line disk image file extraction utility.
  48. An image is a file which contains all the floppy data (boot sector,
  49. FATs, directories, files...) of the original floppy.
  50. Sometimes found with a .DSK or .IMA extension, the image can be restored
  51. to another floppy in the original state as an exact duplicate
  52. of the original.
  53.  
  54.  
  55. An image file can be created using WinImage (for Windows 3.1,
  56. Windows'95 and NT) a shareware program I wrote which creates
  57. and manages image files using a superset of Extract functionally,
  58. or many other DOS based disk copy utilities such as:
  59.  
  60.  - Wimage (in FdFormat utility) from C.H. Hochststter
  61.  - DrDos 6 and OS/2 2.x and 3.x diskimage utility
  62.  - DCF (Disk Copy Fast) from Chang Ping Lee
  63.  - CopyVit from Sebastien Chatard
  64.  - DF (Disk Image File Utility) from Mark Vitt
  65.  - Super-DiskCopy from Super Software
  66.  - SabDu from S.A. Berman
  67.  - Disk-RW from K. Hartnegg
  68.  - DiskDupe from Micro System Design
  69.  - The internal disk image utility from Microsoft and Lotus
  70.  - MFMT sample Windows NT application on the Windows NT SDK.
  71.  
  72. After tests we found 80% of the diskcopy tools which can make images
  73. are compatible with Extract and WinImage.
  74.  
  75.  
  76.  
  77. EXTRACT - USAGE
  78. ~~~~~~~~~~~~~~~
  79. If you run Extract without parameters, you will see the following
  80. usage information.
  81.  
  82.  
  83.  
  84. Extract -l <file> [<Files names>]             List file in an image
  85. Extract -e <file> [x:outpath] [<Files names>] Extract files
  86. Extract -x <file> [x:outpath] [<Files names>] eXtract files with pathname
  87. Extract -i <file> [<Files names>] [-Fnnn]     Inject files on an image
  88.  
  89. Using -oe or -ox instead -e or -x extract Overwriting existing files
  90.   Using -it instead -i Truncate unused image part
  91.   -Fnnn : size of image you want create (360,720,120,144,172,288...)
  92.  
  93.  
  94.  
  95. Extract's syntax is patterned after the PKZIP/PKUNZIP and ARJ syntax
  96. model.
  97.  
  98. The first parameter must be -i, -it, -l, -e, -o, -x, -oe or
  99. -ox.  If the first parameter is the image filename, the -l (list
  100. option) is understood by default. The second parameter is the image
  101. filename,  you may use wildcards (*/?) and Extract will use all the
  102. files it finds matching.  The third parameter is the optional path
  103. where you want Extract to place your extracted files.  You must begin
  104. this parameter the drive and directory (x:\xxxx). If you use only the
  105. irectory name, extract will not consider it as a proper path.
  106.  
  107. If the first parameter is not -i or -it, you can specify wildcards to
  108. select files in images. If you do not specify a file name, Extract
  109. selects all files in the image. If the first parameter is -i or -it,
  110. it specifies a filename you want injected into the image (or -Fxxx to
  111. specify the format of the image you want to build).
  112.  
  113.  
  114. [ Example ]
  115. We are in the C:\REP1 subdirectory, and we created C:\REP2
  116. subdirectory. In C:\REP1 we have DISK1.IMA and DISK2.IMA disk images
  117. created with WinImage.
  118.  
  119. DISK1.IMA is the image of a floppy containing these files:
  120. DOC1.TXT
  121. DOC1.DOC
  122. DOC1A.TXT
  123.  
  124. DISK2.IMA is the image of a floppy containing these files:
  125. DOC2.TXT
  126. DOC2.DOC
  127. DOC2A.TXT
  128. DOC2R\DOC2B.TXT (a subdirectory DOC2R containing DOC2B.TXT)
  129.  
  130.  
  131. If we execute Extract with these parameters...
  132.      EXTRACT -L DISK?.IMA
  133. Extract will list the directories and contents of DISK1.IMA and
  134. DISK2.IMA
  135.  
  136. If we execute Extract with these parameters...
  137.      EXTRACT -E DISK?.IMA
  138. Extract will extract the contents of DISK1.IMA and DISK2.IMA
  139. C:\REP1\DOC1.TXT
  140. C:\REP1\DOC1.DOC
  141. C:\REP1\DOC1A.TXT
  142. C:\REP1\DOC2.TXT
  143. C:\REP1\DOC2.DOC
  144. C:\REP1\DOC2A.TXT
  145. C:\REP1\DOC2B.TXT
  146.  
  147. If we execute Extract with these parameters...
  148.      EXTRACT -X DISK?.IMA
  149. Extract will create the directory C:\REP1\DOC2R and the files
  150. C:\REP1\DOC1.TXT
  151. C:\REP1\DOC1.DOC
  152. C:\REP1\DOC1A.TXT
  153. C:\REP1\DOC2.TXT
  154. C:\REP1\DOC2.DOC
  155. C:\REP1\DOC2A.TXT
  156. C:\REP1\DOC2R\DOC2B.TXT
  157.  
  158.      EXTRACT -X DISK?.IMA C:\REP2 *.DOC DOC2B.TXT
  159. Extract will create the directory C:\REP2\DOC2R and the files
  160. C:\REP2\DOC1.DOC
  161. C:\REP2\DOC2.DOC
  162. C:\REP2\DOC2R\DOC2B.TXT
  163.  
  164.      EXTRACT -I NEWDISK.IMA C:\CONFIG.SYS C:\COMMAND.COM -F144
  165. Extract will build a new image with the 1.44 Mb format size, and put
  166. the files CONFIG.SYS and COMMAND.COM into NEWDISK.IMA
  167.  
  168.      EXTRACT -I DISK.IMA C:\AUTOEXEC.BAT
  169. Extract will add the file AUTOEXEC.BAT into DISK.IMA.
  170.  
  171. When using -E or -X Extract will delete an existing file and ask for
  172. confirmation before deletion.
  173.  
  174. When using -OE or -OX it will not ask for confirmation.
  175.  
  176.  
  177.  
  178. FEEDBACK
  179. ~~~~~~~~
  180. Please feel free to send feedback and comments, in French or English,
  181. to:
  182.  
  183. Internet EMail: 100144.2636@compuserve.com
  184.  
  185. Postal letter:   Gilles Vollant
  186.                  13, rue Mansart
  187.                  91540 Mennecy
  188.                  France
  189.  
  190.  
  191.  
  192. DOWNLOADING WinImage or Extract
  193. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  194. You can find WinImage and Extract from any of the following sites.
  195.  
  196. http://ourworld.compuserve.com/homepages/gvollant/winimage.htm
  197.  
  198. http://ourworld.compuserve.com/homepages/gvollant/extract.htm
  199.  
  200. Compuserve forums IBMHW (disk util library) or WINSHARE (disk util or
  201. Win NT util library)
  202.  
  203. Fidonet affiliated BBSes world-wide.
  204.  
  205. Major file repostiories on the Internet, such as SimTel, WinSite,
  206. and Windows World.
  207.  
  208.  
  209.  
  210.  
  211. THE WINIMAGE UTILITY
  212. ~~~~~~~~~~~~~~~~~~~~
  213. (WINIMA30.ZIP) WINIMAGE 3.00 A POWERFUL WINDOWS DISK COPY TOOL
  214. Here is a list of a few major features.
  215.  
  216.  - Drag and drop
  217.  - 16 bit for Windows 3.x
  218.  - 32 bit for Windows'95, Windows NT 3.5 and 4.0
  219.  - Win32 and Win32s support
  220.  - Create disk images
  221.  - Use non-standard disk formats
  222.  - Format standard and non-standard disk formats
  223.  - Load an image file
  224.  - Create an empty image file
  225.  - Add files to an image
  226.  - Extract files from am image
  227.  - Defragment an image
  228.  - Read images created with other disk image utilities
  229.  - Duplicate many non-standard disks that Disckcopy can not copy
  230.  - Batch Assistant mode
  231.  - Support for languages: English, French, Italian, German, etc..
  232.  - Language translation tool kit with compiler available
  233.  
  234. WinImage is a very powerful utility that can do all that can be done
  235. with Extract and more, and with point and click ease.
  236.  
  237. WinImage supports the following standard disk formats:
  238. 160KB, 180KB, 320KB, 360KB, 720KB, 1.44MB, and 2.88MB
  239.  
  240. WinImage supports the following non-standard disk formats:
  241. 820KB, 1.72MB, 1.68MB (DMF), and DMF cluster sizes of 1024 and 2048
  242.  
  243.